home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue38 / BuildPro / COMMON UNITS / Debug.pas < prev   
Pascal/Delphi Source File  |  1998-04-21  |  303b  |  14 lines

  1. unit Debug;
  2.  
  3. interface
  4.  
  5. const
  6.   // Define constant DebugOn to be true if debug info is on.
  7.   DebugOn = {$IFOPT D+} True {$ELSE} False {$ENDIF};
  8.   // Define constant AssertionOn to be true if assertions are on.
  9.   AssertionsOn = {$IFOPT C+} True {$ELSE} False {$ENDIF};
  10.  
  11. implementation
  12.  
  13. end.
  14.